From: Jim Blandy Date: Sun, 16 May 1993 00:53:57 +0000 (+0000) Subject: * timer.c (notify): Don't call sighold or sigrelse; they're USG X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96240 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=9b5283804a00d19d089aff40bacc33677453dfa1;p=emacs.git * timer.c (notify): Don't call sighold or sigrelse; they're USG only. We should really fix this later, but let's just make it compile for now. --- diff --git a/lib-src/timer.c b/lib-src/timer.c index 2fa220e48a6..7a4ee3c571b 100644 --- a/lib-src/timer.c +++ b/lib-src/timer.c @@ -127,7 +127,7 @@ notify () /* If an alarm timer runs out while this function is executing, it could get called recursively. This would be bad, because it's not re-entrant. So we must try to suspend the signal. */ -#ifdef sigmask +#if 0 /* This function isn't right for BSD. Fix it later. */ sighold(SIGIO); #endif @@ -162,7 +162,7 @@ notify () if (num_events > 0) alarm (waitfor); -#ifdef sigmask +#if 0 /* This function isn't right for BSD. */ sigrelse(SIGIO); #endif }